Student Solution

-->

"Education is the most powerful weapon which you can use to change the world”
– Nelson Mandela

1 University

1 Course

4 Subjects

Week 5 Data Management Project

Week 5 Data Management Project

Q The final project requires a physical design of the database you have selected for your project. This database should be normalized in 3rd normal form. Write the CREATE TABLE statements for all the entities in the database you have been designing. Make sure to include the primary keys and foreign keys, plus the data types for each attribute. In addition, write INSERT statements to input 10 rows of data into at least one of your tables. Submit your assignment in MS Word format via the assignment link. Resources: These are the same resources used for the Week 4 Discussion Board and can be found in MindTap in the Week 4 Discussion Board module. • Textbook: Module 8 – Advanced SQL • Video: Module 8 – CREATE TABLE Basics (6:24 min.) • Video: Module 8 – CREATE TABLE Implementing Relationships (3:53 min.) • Video: Module 8 – INSERT Basics (4:54 min.) • Video: Module 8 – INSERT Insert with an Attribute List (3:39 min.) • Video: Module 8 – UPDATE Updating Existing Data (2:48 min.) • PowerPoint: Module 8 Review charts Rubric Data Management Final Project Weekly Submission Rubric Data Management Final Project Weekly Submission Rubric Criteria Ratings Pts This criterion is linked to a Learning OutcomeCritical Thinking 20 pts Main points are concise, clear and well developed. Evidence and detail provide superior support for the assignment. 18 pts Main points are clear and well developed. Evidence and detail provide strong support for the assignment. 16 pts Main points are clear and developed. Evidence and detail adequately support the assignment. 14 pts Presents an incomplete analysis of the issues identified and demonstrates an inadequate understanding of the topic(s) and issue(s). 20 pts This criterion is linked to a Learning OutcomeAnalysis 20 pts Makes appropriate and powerful connections between the issues identified and the strategic concepts studied in the reading; Demonstrates complete command of the strategic concepts and analytical tools studied. Supports diagnosis and opinions with strong arguments and evidence; presents a balanced and critical view; interpretation is both reasonable and objective. 18 pts Makes appropriate connections between the issues identified and the strategic concepts studied in the reading; Demonstrates good command of the strategic concepts and analytical tools studied. Supports diagnosis and opinions with reasons and evidence; presents a fairly balanced view; interpretation is both reasonable and objective. 16 pts Makes appropriate but somewhat vague connections between the issues and concepts studied in the reading; Demonstrates limited command of the strategic concepts and analytical tools studied. Supports diagnosis and opinions with limited reasons and evidence; presents a somewhat one-sided argument. 14 pts Makes little or no connection between the issues identified and the strategic concepts studied in the reading. Supports diagnosis and opinions with few reasons and little evidence; argument is one-sided and not objective. 20 pts This criterion is linked to a Learning OutcomeKnowledge of Content 20 pts Exceeds requirements in demonstrating strong knowledge of content and depth. 18 pts Knowledge of content and depth are appropriately reflected in the assignment 16 pts Supplements case study with limited research into the present situation of the company; provides limited documentation of sources consulted. 14 pts Some knowledge of content and depth are evident. 20 pts This criterion is linked to a Learning OutcomeAssignment Requirements 20 pts Presents detailed, realistic, and appropriate recommendations clearly supported by the requirements for the weekly submission. 18 pts Work is accurately detailed. The weekly assignment requirements are adequately addressed. 16 pts Work reflects the assignment requirements. The weekly assignment requirements are somewhat addressed. 14 pts Work rarely reflects the assignment requirements. The weekly assignment requirements are rarely addressed. 20 pts This criterion is linked to a Learning OutcomeWriting Mechanics 20 pts Writing demonstrates a sophisticated clarity, conciseness, and correctness; includes thorough details and relevant data and information; extremely well-organized. 18 pts Writing is accomplished in terms of clarity and conciseness and contains only a few errors; includes sufficient details and relevant data and information; well-organized. 16 pts Knowledge of content and depth are satisfactory. 14 pts Writing is unfocused, rambling, or contains serious errors; lacks detail and relevant data and information. 20 pts Total Points: 100

View Related Questions

Solution Preview

CREATE TABLE Vendor( ID_NOT NULL PRIMARY KEY, First_Name(25) NOT NULL, Last_Name(25) NOT NULL, Contact_Number NOT NULL, Address(50) NOT NULL, Website(50) NOT NULL; CREATE TABLE Mode_Of_Payment ( Sequence_Number int NOT NULL PRIMARY KEY, Cash int NOT NULL, DEBIT_Card_Payment Varchar(35) NOT NULL, Credit_Card_Payment varchar(35) NOT NULL); CREATE TABLE Item_Details( Item_Code int NOT NULL PRIMARY KEY,